projects/deliberation_at_scale/packages/frontend/app/[lang]/profile/page.tsx (6 lines of code) (raw):

import ProfileChatFlow from '@/components/ChatFlow/ProfileChatFlow'; import useAuth from '@/hooks/useAuth'; export default async function Profile() { await useAuth(); return ( <ProfileChatFlow /> ); }